home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib2 / v_02_01 / 2n01046b < prev    next >
Encoding:
Text File  |  1995-11-01  |  168 b   |  12 lines

  1.  
  2.  
  3.  
  4. {*
  5.  * return true if c is a digit; otherwise return false.
  6.  *}
  7. function isdigit(c : char) : boolean;
  8.     begin
  9.     isdigit := ('0' <= c) and (c <= '9');
  10.     end;
  11.  
  12.